home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
gcc
/
ixemulsrc.lha
/
ixemul-41.4
/
gnulib
/
eprintf.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-08-19
|
283b
|
14 lines
#include <stdio.h>
/* This is used by the `assert' macro. */
void
__eprintf (string, expression, line, filename)
char *string;
char *expression;
int line;
char *filename;
{
fprintf (stderr, string, expression, line, filename);
fflush (stderr);
abort ();
}